remove RPATH/RUNPATH from examples' binaries.
authorLisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>
Sat, 11 Apr 2026 10:46:07 +0000 (12:46 +0200)
committerPatrick Franz <deltaone@debian.org>
Sat, 11 Apr 2026 10:46:07 +0000 (12:46 +0200)
Forwarded: not-needed
Last-Update: 2024-02-15

On Debian the examples are built against system's libraries, so there is no
need to set RPATH/RUNPATH.

Gbp-Pq: Name remove_rpath_from_examples.patch

cmake/QtBuildRepoExamplesHelpers.cmake

index 126a5ff3f0419ac7c2f15db17343d274daf64a46..a68a3a7ca2d47d3b3253ce907d8c3f40f57d6c7a 100644 (file)
@@ -122,7 +122,7 @@ macro(qt_examples_build_begin)
     # This means that installed examples are not relocatable at the moment. We would need to
     # annotate where each example is installed to, to be able to derive a relative rpath, and it
     # seems there's no way to query such information from CMake itself.
-    set(CMAKE_INSTALL_RPATH "${_default_install_rpath}")
+    #set(CMAKE_INSTALL_RPATH "${_default_install_rpath}")
 
     install(CODE "
 # Backup CMAKE_INSTALL_PREFIX because we're going to change it in each example subdirectory